home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
PROGTOOL
/
DOS32.ZIP;1
/
MK.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1993-10-04
|
246 b
|
12 lines
rem A batch file to assemble for the DOS extender
@echo off
if not exist %1.ASM goto :NotFound
tasm /z /p %1
if not exist %1.OBJ goto :Exit
tlink /3 %1 dos32.obj %2 %3 %4 %5
goto :Exit
:NotFound
echo %1.ASM NOT FOUND
:Exit